projects
/
project
/
bcm63xx
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
508a6ed
)
arm: mx6: cm-fx6: change dtb node for ethaddr
author
Nikita Kiryanov
<
[email protected]
>
Wed, 14 Jan 2015 08:42:42 +0000
(10:42 +0200)
committer
Stefano Babic
<
[email protected]
>
Thu, 29 Jan 2015 16:42:27 +0000
(17:42 +0100)
When passing eth address to Linux via dtb, the "local-mac-address"
property should be set for "/soc/aips-bus@
02100000
/ethernet@
02188000
",
not "/fec".
Signed-off-by: Nikita Kiryanov <
[email protected]
>
Cc: Stefano Babic <
[email protected]
>
Cc: Igor Grinberg <
[email protected]
>
Acked-by: Igor Grinberg <
[email protected]
>
board/compulab/cm_fx6/cm_fx6.c
patch
|
blob
|
history
diff --git
a/board/compulab/cm_fx6/cm_fx6.c
b/board/compulab/cm_fx6/cm_fx6.c
index 84e36439fa18ddf10040043f63abd2fba478562f..5ddf8c6688096ab8c3e7e43e42f12db50ea4f106 100644
(file)
--- a/
board/compulab/cm_fx6/cm_fx6.c
+++ b/
board/compulab/cm_fx6/cm_fx6.c
@@
-464,8
+464,9
@@
int ft_board_setup(void *blob, bd_t *bd)
/* MAC addr */
if (eth_getenv_enetaddr("ethaddr", enetaddr)) {
- fdt_find_and_setprop(blob, "/fec", "local-mac-address",
- enetaddr, 6, 1);
+ fdt_find_and_setprop(blob,
+ "/soc/aips-bus@02100000/ethernet@02188000",
+ "local-mac-address", enetaddr, 6, 1);
}
return 0;